home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-ALPH.{_4 / STAT.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  777b  |  41 lines

  1. #ifndef _ALPHA_STAT_H
  2. #define _ALPHA_STAT_H
  3.  
  4. struct __old_kernel_stat {
  5.     unsigned int    st_dev;
  6.     unsigned int    st_ino;
  7.     unsigned int    st_mode;
  8.     unsigned int    st_nlink;
  9.     unsigned int    st_uid;
  10.     unsigned int    st_gid;
  11.     unsigned int    st_rdev;
  12.     long        st_size;
  13.     unsigned long    st_atime;
  14.     unsigned long    st_mtime;
  15.     unsigned long    st_ctime;
  16.     unsigned int    st_blksize;
  17.     int        st_blocks;
  18.     unsigned int    st_flags;
  19.     unsigned int    st_gen;
  20. };
  21.  
  22. struct stat {
  23.     unsigned int    st_dev;
  24.     unsigned int    st_ino;
  25.     unsigned int    st_mode;
  26.     unsigned int    st_nlink;
  27.     unsigned int    st_uid;
  28.     unsigned int    st_gid;
  29.     unsigned int    st_rdev;
  30.     long        st_size;
  31.     unsigned long    st_atime;
  32.     unsigned long    st_mtime;
  33.     unsigned long    st_ctime;
  34.     unsigned int    st_blksize;
  35.     int        st_blocks;
  36.     unsigned int    st_flags;
  37.     unsigned int    st_gen;
  38. };
  39.  
  40. #endif
  41.